home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 31 / Amiga Format CD31 (1998-09-02)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1998-10].iso / -seriously_amiga- / hardware / catweasel_extras / qlh0 < prev    next >
Text File  |  1998-07-16  |  1KB  |  37 lines

  1. /* QL file system entry - adjusted by Simon N Goodwin, 17th July 1997.
  2.  *
  3.  * This is a version of QL0: customised for the CatWeasel disk controller.
  4.  * Alter FLAGS from 3 (High Density, 300 RPM) to 2 (Double Density, 300 RPM)
  5.  * if you prefer to access Double Density (720K) Qdos disks in this drive.
  6.  * 40 track and single sided disks can then be formatted and accessed by
  7.  * reducing HighCyl to 39 (from 79) or surfaces to 1, rather than 2. Thus
  8.  * you can access both 360K formats (DS 40T & SS 80T) and 180K SS 40T disks.
  9.  *
  10.  * This file enables reading and writing of QDOS (QL) disks on the first
  11.  * Catweasel floppy drive, normally referred to as PD0:, TD0:, CBM0: etc. By
  12.  * creating a new copy of this file and changing the Unit line to use other
  13.  * numbers, you can make the QLFileSystem available on other devices. For
  14.  * example, changing the value of Unit to 1 would create a mount file that
  15.  * would allow for QDOS floppies in the second Catweasel drive.
  16.  */
  17.  
  18. FileSystem     = L:QLFileSystem
  19. Device         = multidisk.device
  20. Unit           = 0
  21. Flags          = 3
  22. Mount          = 1
  23. Surfaces       = 2
  24. BlocksPerTrack = 9
  25. Reserved       = 0
  26. Interleave     = 0
  27. LowCyl         = 0
  28. HighCyl        = 79
  29. Buffers        = 21
  30. BufMemType     = 1
  31. StackSize      = 8000
  32. Priority       = 5
  33. GlobVec        = -1
  34. DosType        = 0x444F5300
  35.  
  36.  
  37.